
.custom-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    z-index: 1055;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(20px);
}
.custom-notification.show {
    opacity: 1;
    transform: translateY(0);
}
.custom-notification img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
